projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66d8322
)
Remove some compat code from htmlfontify.el
author
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 18 Aug 2020 21:11:02 +0000
(23:11 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 18 Aug 2020 21:19:09 +0000
(23:19 +0200)
* lisp/htmlfontify.el (hfy-color-vals): color-values is always
defined.
lisp/htmlfontify.el
patch
|
blob
|
history
diff --git
a/lisp/htmlfontify.el
b/lisp/htmlfontify.el
index 6265537e885f939d5fe97121db8ddb0172b0befd..4d653972c95450fd074bcf9a3a7a5e055fc10329 100644
(file)
--- a/
lisp/htmlfontify.el
+++ b/
lisp/htmlfontify.el
@@
-556,10
+556,7
@@
If a window system is unavailable, calls `hfy-fallback-color-values'."
'(1 2 3))
;;(message ">> %s" color)
(if window-system
- (if (fboundp 'color-values)
- (color-values color)
- ;;(message "[%S]" window-system)
- (x-color-values color))
+ (color-values color)
;; blarg - tty colors are no good - go fetch some X colors:
(hfy-fallback-color-values color))))
(define-obsolete-function-alias 'hfy-colour-vals #'hfy-color-vals "27.1")